home *** CD-ROM | disk | FTP | other *** search
- on(release){
- set("../:disclaimeropen","0");
- NumberOfChars = length(filetolaunch);
- LookForThisChar = NumberOfChars - "3";
- trace("This is Look for this char" add LookForThisChar);
- if(filetolaunch.substr(LookForThisChar,"4") eq ".exe")
- {
- trace("I\'m an exe");
- fscommand("exec",eval("../../:PathtoCD") add filetolaunch);
- }
- else
- {
- getURL(filetolaunch,"_blank");
- trace("I\'m a URL");
- }
- set("../:disclaimeraccepted","yes");
- gotoAndStop(1);
- }
-